func runtime.arenaIndex

16 uses

	runtime (current package)
		malloc.go#L665: 		} else if arenaIndex(p+n-1) >= 1<<arenaBits {
		malloc.go#L725: 		} else if arenaIndex(p) >= 1<<arenaBits {
		malloc.go#L727: 		} else if arenaIndex(p+size-1) >= 1<<arenaBits {
		malloc.go#L744: 	for ri := arenaIndex(uintptr(v)); ri <= arenaIndex(uintptr(v)+size-1); ri++ {
		mcheckmark.go#L89: 	ai := arenaIndex(obj)
		mheap.go#L588: func arenaIndex(p uintptr) arenaIdx {
		mheap.go#L675: 	ri := arenaIndex(p)
		mheap.go#L705: 	ai := arenaIndex(p)
		mheap.go#L731: 	ai := arenaIndex(p)
		mheap.go#L995: 	ai := arenaIndex(base)
		mheap.go#L1000: 			ai = arenaIndex(base + n*pageSize)
		mheap.go#L1019: 		ai := arenaIndex(base)
		mheap.go#L1839: 	ai := arenaIndex(s.base())
		mheap.go#L1847: 	ai := arenaIndex(s.base())
		mpagealloc.go#L616: 	ai := arenaIndex(addr.addr())